home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 API Bible / Windows 95 API Bible 3 Disc Set.iso / Win32 API Bible Book 1 of 3.iso / chapter8 / dlgboxp.c < prev    next >
C/C++ Source or Header  |  1996-01-28  |  6KB  |  229 lines

  1.  
  2. #include <windows.h>  
  3. #include "DlgBoxP.h" 
  4.  
  5.  
  6. #if defined (WIN32)
  7.     #define IS_WIN32 TRUE
  8. #else
  9.     #define IS_WIN32 FALSE
  10. #endif
  11.  
  12. #define IS_NT      IS_WIN32 && (BOOL)(GetVersion() < 0x80000000)
  13. #define IS_WIN32S  IS_WIN32 && (BOOL)(!(IS_NT) && (LOBYTE(LOWORD(GetVersion()))<4))
  14. #define IS_WIN95   (BOOL)(!(IS_NT) && !(IS_WIN32S)) && IS_WIN32
  15.  
  16. HINSTANCE hInst;   // current instance
  17.  
  18. LPCTSTR lpszAppName  = "MyApp";
  19. LPCTSTR lpszTitle    = "My Application"; 
  20.  
  21. BOOL RegisterWin95( CONST WNDCLASS* lpwc );
  22.  
  23. int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
  24.                       LPTSTR lpCmdLine, int nCmdShow)
  25. {
  26.    MSG      msg;
  27.    HWND     hWnd; 
  28.    WNDCLASS wc;
  29.  
  30.    // Register the main application window class.
  31.    //............................................
  32.    wc.style         = CS_HREDRAW | CS_VREDRAW;
  33.    wc.lpfnWndProc   = (WNDPROC)WndProc;       
  34.    wc.cbClsExtra    = 0;                      
  35.    wc.cbWndExtra    = 0;                      
  36.    wc.hInstance     = hInstance;              
  37.    wc.hIcon         = LoadIcon( hInstance, lpszAppName ); 
  38.    wc.hCursor       = LoadCursor(NULL, IDC_ARROW);
  39.    wc.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
  40.    wc.lpszMenuName  = lpszAppName;              
  41.    wc.lpszClassName = lpszAppName;              
  42.  
  43.    if ( IS_WIN95 )
  44.    {
  45.       if ( !RegisterWin95( &wc ) )
  46.          return( FALSE );
  47.    }
  48.    else if ( !RegisterClass( &wc ) )
  49.       return( FALSE );
  50.  
  51.    hInst = hInstance; 
  52.  
  53.    // Create the main application window.
  54.    //....................................
  55.    hWnd = CreateWindow( lpszAppName, 
  56.                         lpszTitle,    
  57.                         WS_OVERLAPPEDWINDOW, 
  58.                         CW_USEDEFAULT, 0, 
  59.                         CW_USEDEFAULT, 0,  
  60.                         NULL,              
  61.                         NULL,              
  62.                         hInstance,         
  63.                         NULL               
  64.                       );
  65.  
  66.    if ( !hWnd ) 
  67.       return( FALSE );
  68.  
  69.    ShowWindow( hWnd, nCmdShow ); 
  70.    UpdateWindow( hWnd );         
  71.  
  72.    while( GetMessage( &msg, NULL, 0, 0) )   
  73.    {
  74.       TranslateMessage( &msg ); 
  75.       DispatchMessage( &msg );  
  76.    }
  77.  
  78.    return( msg.wParam ); 
  79. }
  80.  
  81.  
  82. BOOL RegisterWin95( CONST WNDCLASS* lpwc )
  83. {
  84.    WNDCLASSEX wcex;
  85.  
  86.    wcex.style         = lpwc->style;
  87.    wcex.lpfnWndProc   = lpwc->lpfnWndProc;
  88.    wcex.cbClsExtra    = lpwc->cbClsExtra;
  89.    wcex.cbWndExtra    = lpwc->cbWndExtra;
  90.    wcex.hInstance     = lpwc->hInstance;
  91.    wcex.hIcon         = lpwc->hIcon;
  92.    wcex.hCursor       = lpwc->hCursor;
  93.    wcex.hbrBackground = lpwc->hbrBackground;
  94.    wcex.lpszMenuName  = lpwc->lpszMenuName;
  95.    wcex.lpszClassName = lpwc->lpszClassName;
  96.  
  97.    // Added elements for Windows 95.
  98.    //...............................
  99.    wcex.cbSize = sizeof(WNDCLASSEX);
  100.    wcex.hIconSm = LoadImage(wcex.hInstance, lpwc->lpszClassName, 
  101.                             IMAGE_ICON, 16, 16,
  102.                             LR_DEFAULTCOLOR );
  103.             
  104.    return RegisterClassEx( &wcex );
  105. }
  106.  
  107. typedef struct
  108. {
  109.    int   nEditOne;
  110.    char  szEditTwo[20];
  111. } DLGDATA, *LPDLGDATA;
  112.  
  113. LRESULT CALLBACK WndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam )
  114. {
  115. static LPDLGDATA lpMem;
  116.  
  117.    switch( uMsg )
  118.    {
  119.       case WM_CREATE :
  120.               lpMem = (LPDLGDATA)HeapAlloc( GetProcessHeap(), 
  121.                                             HEAP_ZERO_MEMORY, 
  122.                                             sizeof( DLGDATA ) );
  123.               lpMem->nEditOne = 10;
  124.               strcpy( lpMem->szEditTwo, "Edit Two" );
  125.               break;
  126.  
  127.       case WM_COMMAND :
  128.               switch( LOWORD( wParam ) )
  129.               {
  130.                  case IDM_TEST :
  131.                         DialogBoxParam( hInst, "TestDialog", hWnd,
  132.                                         (DLGPROC)TestDlgProc,
  133.                                         (LPARAM)lpMem );
  134.                         break;
  135.  
  136.                  case IDM_ABOUT :
  137.                         DialogBox( hInst, "AboutBox", hWnd, (DLGPROC)About );
  138.                         break;
  139.  
  140.                  case IDM_EXIT :
  141.                         DestroyWindow( hWnd );
  142.                         break;
  143.               }
  144.               break;
  145.       
  146.       case WM_DESTROY :
  147.               if ( lpMem )
  148.                  HeapFree( GetProcessHeap(), 0, lpMem );
  149.  
  150.               PostQuitMessage(0);
  151.               break;
  152.  
  153.       default :
  154.             return( DefWindowProc( hWnd, uMsg, wParam, lParam ) );
  155.    }
  156.  
  157.    return( 0L );
  158. }
  159.  
  160.  
  161. LRESULT CALLBACK TestDlgProc( HWND hDlg, UINT uMsg, 
  162.                               WPARAM wParam, LPARAM lParam )
  163. {
  164. static LPDLGDATA lpMem;
  165.  
  166.    switch( uMsg )
  167.    {
  168.       case WM_INITDIALOG :
  169.             lpMem = (LPDLGDATA)lParam;
  170.  
  171.             SetDlgItemInt ( hDlg, IDC_EDIT1, lpMem->nEditOne, TRUE );
  172.             SetDlgItemText( hDlg, IDC_EDIT2, lpMem->szEditTwo );
  173.             break;
  174.  
  175.       case WM_COMMAND :
  176.             switch( LOWORD( wParam ) )
  177.             {
  178.                case IDOK :
  179.                       {
  180.                          BOOL bTran;
  181.  
  182.                          lpMem->nEditOne = GetDlgItemInt( hDlg, IDC_EDIT1,
  183.                                                    &bTran, TRUE );
  184.                          GetDlgItemText( hDlg, IDC_EDIT2, lpMem->szEditTwo,
  185.                                          sizeof(lpMem->szEditTwo)-1 );
  186.  
  187.                          EndDialog( hDlg, IDOK );
  188.                       }
  189.                       break;
  190.  
  191.                case IDCANCEL : 
  192.                       EndDialog( hDlg, IDCANCEL );
  193.                       break;
  194.             }
  195.             break;
  196.  
  197.       default :
  198.             return( FALSE );
  199.    }
  200.  
  201.    return( TRUE );
  202. }
  203.  
  204.  
  205.  
  206.  
  207. LRESULT CALLBACK About( HWND hDlg,           
  208.                         UINT message,        
  209.                         WPARAM wParam,       
  210.                         LPARAM lParam)
  211. {
  212.    switch (message) 
  213.    {
  214.        case WM_INITDIALOG: 
  215.                return (TRUE);
  216.  
  217.        case WM_COMMAND:                              
  218.                if (   LOWORD(wParam) == IDOK         
  219.                    || LOWORD(wParam) == IDCANCEL)    
  220.                {
  221.                        EndDialog(hDlg, TRUE);        
  222.                        return (TRUE);
  223.                }
  224.                break;
  225.    }
  226.  
  227.    return (FALSE); 
  228. }
  229.